.Experiancepage{
    width: 100%;
    height:fit-content;
    padding: 10px 10%;
    background-color: #222;
    

}
.row{
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 20px;
}
.title {
    text-align: center;}
.content {
       padding: 10px;
}
.col header.title{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: #3453ffef;
    text-transform: uppercase;

}
.col .content{
    padding: 0px 30px;
    border-left: 2px solid #bababa;
}
.col .content .box{
    text-decoration: none;
    text-transform: capitalize;
    color: #050505;
    position: relative;
    padding: 20px;
    border: 1px solid #eaeaea;
    background-color: #ffffff;
    cursor: pointer;
    transition: all 0.4s ;
    margin-bottom: 20px;  
}
.col .content .box:hover{
    box-shadow: 0px 8px 12px 0px #0830e0;
    padding: 30px;
    border: 1px solid transparent;
}   
.col .content .box::before{
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    right: calc(100% + 22px);
    top: 0;
    background-color: #0830e0;
    border: 2px solid #fff;
}
.box h4{
    position: relative;
    color: #0830e0;
    text-transform: uppercase;
}
.box h3 a{
    font-size: 19px;
    padding: 10px 0px 6px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color:#050505;
}
.box h3 a:hover{
text-decoration:underline;
color:#10539e;
}
.box p{
    line-height: 1.2;
    color: #666;
    font-size: 17px;

}
@media(max-width: 768px){
    .row{
        grid-template-columns: 1fr;
    }
}

